main{
    width: 100%;
    background-color: black;
    height: 50rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center ;
}
main h1{
    font-size: 6rem;
    width: auto;
    font-family: lopis;
    margin-top: 7rem;
    letter-spacing: 0.06em;
}
main p{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
}
@media screen and (max-width: 450px){
    main{
        height: 140rem;
    }
    main h1{
        margin-top: 18rem;
        font-size: 10rem;
    }
    main p{
        font-size: 6rem;
    }
}